Hi Todd,
Are you capable of modifying/compiling KMotionCNC? If so, the Kanalog ADC readings are already available in the PC as part of the Uploaded Global Status record.
Every Jog Button (CMotionButton object) has a "mag" value that can be changed with an Init function call to set the magnitude of the speed.
void CMotionButton::Init(CKMotionCNCDlg *pDlg, int axis, int dir, double mag, bool StepMode)
For example:
m_Zminus.Init (this, 0,-1,0.5,false);
where 0.5 causes the button to work at half of full Jog speed
The buttons are currently only initialized once, but I don't see why you couldn't call Init to change the speed whenever you wish.
HTH
Regards
TK